type github.com/jackc/pgx/v5/pgtype.uintWrapper

12 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L250: type uintWrapper uint
		builtin_wrappers.go#L252: func (w uintWrapper) SkipUnderlyingTypePlan() {}
		builtin_wrappers.go#L254: func (w *uintWrapper) ScanInt64(v Int8) error {
		builtin_wrappers.go#L267: 	*w = uintWrapper(v.Int64)
		builtin_wrappers.go#L272: func (w uintWrapper) Int64Value() (Int8, error) {
		builtin_wrappers.go#L280: func (w *uintWrapper) ScanNumeric(v Numeric) error {
		builtin_wrappers.go#L300: 	*w = uintWrapper(ui)
		builtin_wrappers.go#L305: func (w uintWrapper) NumericValue() (Numeric, error) {
		pgtype.go#L625: 		return &wrapUintScanPlan{}, (*uintWrapper)(target), true
		pgtype.go#L754: 	return plan.next.Scan(src, (*uintWrapper)(dst.(*uint)))
		pgtype.go#L1482: 		return &wrapUintEncodePlan{}, uintWrapper(value), true
		pgtype.go#L1613: 	return plan.next.Encode(uintWrapper(value.(uint)), buf)